6e8160e6857a45007bb64d73d982892606d859ce,src/me/corriekay/pokegoutil/windows/PokemonTab.java,PokemonTab,powerUpSelected,#,469
Before Change
private void powerUpSelected() {
ArrayList<Pokemon> selection = getSelectedPokemon();
if (selection.size() > 0) {
if (confirmOperation("PowerUp", selection)) {
MutableInt err = new MutableInt(),
skipped = new MutableInt(),
success = new MutableInt(),
After Change
private void powerUpSelected() {
ArrayList<Pokemon> selection = getSelectedPokemon();
if (selection.size() == 0)
return;
if (!confirmOperation("PowerUp", selection))
return;
MutableInt err = new MutableInt(),
skipped = new MutableInt(),
success = new MutableInt(),